home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group98b.txt / 000079_icon-group-sender _Thu Jun 11 13:21:58 1998.msg < prev    next >
Internet Message Format  |  2000-09-20  |  2KB

  1. Return-Path: <icon-group-sender>
  2. Received: from kingfisher.CS.Arizona.EDU (kingfisher.CS.Arizona.EDU [192.12.69.239])
  3.     by baskerville.CS.Arizona.EDU (8.8.8/8.8.7) with SMTP id NAA13161
  4.     for <icon-group-addresses@baskerville.CS.Arizona.EDU>; Thu, 11 Jun 1998 13:21:54 -0700 (MST)
  5. Received: by kingfisher.CS.Arizona.EDU (5.65v4.0/1.1.8.2/08Nov94-0446PM)
  6.     id AA18280; Thu, 11 Jun 1998 13:21:46 -0700
  7. Message-Id: <3.0.5.32.19980611115520.00a2fc20@post.its.mcw.edu>
  8. X-Sender: cdt@post.its.mcw.edu
  9. X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32)
  10. Date: Thu, 11 Jun 1998 11:55:20
  11. To: icon-group@optima.CS.Arizona.EDU
  12. From: Chris Tenaglia <cdt@post.its.mcw.edu>
  13. Subject: More CGI background
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset="us-ascii"
  16. Errors-To: icon-group-errors@optima.CS.Arizona.EDU
  17. Status: RO
  18. Content-Length: 1523
  19.  
  20. I was having no progress. Here's a little more detail.
  21. I found other resources on the web, even a teacher's
  22. slide set. Seems easy in that form. Any programming
  23. language should work, so I decided to try a simple
  24. shell script like "testme" in the cgi directory.
  25. ----------------------------------------------------
  26. #!/bin/csh
  27. echo "Content type: text/html"
  28. echo "<HTML>"
  29. echo "<HEAD>"
  30. echo "<TITLE>This is the title</TITLE>"
  31. echo "</HEAD>"
  32. echo "<BODY>"
  33. echo "<H1>Beginning Page</H1>"
  34. echo "<P>"
  35. echo "Here is some free form text"
  36. echo "</BODY>"
  37. echo "</HTML>"
  38. ---------------------------------------------------
  39.  
  40. Which is called by this html page:
  41. ---------------------------------------------------
  42. <HTML>
  43. <HEAD>
  44. <TITLE>This is the CGI testing Title</TITLE>
  45. </HEAD>
  46. <BODY>
  47. <BODY BGCOLOR=#FFFFFF>
  48. <Form action="http://www.mcw.edu/cgi-bin/bioet/testme" method=post>
  49.  
  50. <H1>Mondo Header</H1>
  51. <P>
  52. Here's a crazy TEST web page!
  53. <P>
  54. <select name="BINGO">
  55.   <option selected>
  56.   <option>Numero Uno
  57.   <option>Numero Dos
  58.   <option>Numero Tres
  59. </select>
  60. <P>
  61. <input type=Submit value="DON'T PUSH THIS BUTTON">
  62. </FORM>
  63. </BODY>
  64. </HTML>
  65. ---------------------------------------------------------
  66. Still it sits for a few minutes and I get an internal server error message.
  67. Put icont and iconx in the cgi-bin directory and did the patchstr.
  68. Recompiled and the icode looks good and runs fine from telnet.
  69. I have some other things I am trying. I hope to post the result
  70. once I get past this hurdle. Thanks to all who responded so far.
  71. Chris.
  72.  
  73.  
  74.